Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

interface System.​IParsable<​TSelf>

Assembly: System.Runtime

Defines a mechanism for parsing a string to a value.

Methods

static TSelf
Parse​(string s, IFormatProvider? provider)
Parses a string into a value.
Returns The result of parsing <paramref name="s" /> .
s The string to parse.
provider An object that provides culture-specific formatting information about <paramref name="s" /> .
static bool
TryParse​(string s, IFormatProvider provider, TSelf& result)